home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / 3DTOSHI2.ZIP / mpgfx / include / gfxdev.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-23  |  423 b   |  25 lines

  1.  
  2. // gfxdev.h
  3. //
  4. // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
  5.  
  6. #ifndef __GFXDEVICE_H__
  7. #define __GFXDEVICE_H__
  8.  
  9. #include "stdgfx.h"
  10. #include "gfxerror.h"
  11.  
  12. // Device Control Interface
  13. class DCIClass : public MYOBJECT
  14.   {
  15.     public :
  16.       DCIClass ();
  17.       virtual ~DCIClass ();
  18.  
  19.       virtual BOOLEAN Init () = 0;
  20.       virtual VOID DeInit () = 0;
  21.   }; // End of DCIClass
  22.  
  23. #endif
  24.  
  25.